home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / BevelTypePropertyEditor.java < prev    next >
Text File  |  1998-04-21  |  630b  |  26 lines

  1. package com.symantec.itools.swing.borders;
  2.  
  3. import com.symantec.itools.beans.*;
  4.  
  5. public final class BevelTypePropertyEditor
  6.     extends TaggedIntPropertyEditor
  7. {
  8.     private static TaggedInt[] m_Tags = null;
  9.     
  10.     // When the class loads, load the tags
  11.     
  12.     static
  13.     {
  14.         m_Tags = new TaggedInt[]
  15.         { 
  16.             new TaggedInt("RAISED", com.sun.java.swing.border.BevelBorder.RAISED, "com.sun.java.swing.border.BevelBorder.RAISED"),
  17.             new TaggedInt("LOWERED", com.sun.java.swing.border.BevelBorder.LOWERED, "com.sun.java.swing.border.BevelBorder.LOWERED"),
  18.         };
  19.     }
  20.     
  21.     public BevelTypePropertyEditor()
  22.     {
  23.         super(m_Tags);
  24.     }
  25. }
  26.